home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Headers / misckit / miscgiskit / MiscZoneUTMCoord.h < prev   
Encoding:
Text File  |  1995-07-08  |  879 b   |  37 lines

  1. /*=========================== MiscZoneUTMCoord.h ============================*/
  2. /* MiscZoneUTMCoord class contains and supports values representing locations
  3.    in any zone of the world wide Universal Transverse Mercator coordinate
  4.    system.
  5.  
  6.    DMA Release 0.8, Copyright @1993 by Genesis Project, Ltd. All Rights
  7.    Reserved. For further information on terms and conditions see
  8.         the MiscKit license.
  9.  
  10. HISTORY
  11. 26-Mar-93  Dale Amon at GPL
  12.        Created.
  13. */
  14.  
  15. #import <appkit/appkit.h>
  16. #import <misckit/miscgiskit.h>
  17.  
  18. #define    MISC_ZONE_COORD_VERSION_ID    0.8
  19.  
  20. @interface MiscZoneUTMCoord:MiscUTMCoord
  21. {
  22.     unsigned int    zoneNumber;    /* UTM zone number */
  23. }
  24.  
  25. +initialize;
  26.  
  27. -initDescription: (char *) txt zone: (unsigned int) zone;
  28.  
  29. - awake;
  30. - write:(NXTypedStream *)stream;
  31. - read: (NXTypedStream *)stream;
  32.  
  33. /* blocked methods */
  34. -initDescription: (char *) txt constants: anObject;
  35.  
  36. @end
  37.